f98ae185965a002e0d77140e780343f532387925,idea/src/org/jetbrains/jet/plugin/framework/JavaRuntimeLibraryDescription.java,JavaRuntimeLibraryDescription,createNewLibrary,#JComponent#VirtualFile#,54

Before Change


        if (dialog.isOK()) {
            String standaloneCompilerPath = dialog.getStandaloneCompilerPath();
            KotlinPaths paths = standaloneCompilerPath == null ?
                                      PathUtil.getKotlinPathsForIdeaPlugin() :
                                      PathUtil.getKotlinStandaloneCompilerPaths(standaloneCompilerPath);

            File libraryFile = paths.getRuntimePath();

After Change


        dialog.show();

        if (dialog.isOK()) {
            KotlinPaths paths = PathUtil.getKotlinPathsForIdeaPlugin();

            File libraryFile = paths.getRuntimePath();
            if (!libraryFile.exists()) {